home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PPC1B3AA.ZIP / TIMER_.PPS < prev    next >
Text File  |  1996-07-30  |  208b  |  11 lines

  1. ; Demonstration of the Timer function (library TIMER.LIB)
  2.  
  3. #ppe
  4. #libpath ..\..\lib
  5. #use timer
  6.  
  7. While (Inkey() = "") Do
  8.     AnsiPos 1, 1
  9.     Print "Count of ticks since midnight: ", Timer()
  10. EndWhile
  11.